home *** CD-ROM | disk | FTP | other *** search
/ Reverse Code Engineering RCE CD +sandman 2000 / ReverseCodeEngineeringRceCdsandman2000.iso / RCE / Tools / Win95 Secrets / SETUP.Z / SHOW16.H < prev    next >
Encoding:
C/C++ Source or Header  |  1995-07-19  |  782 b   |  31 lines

  1. //==================================
  2. // SHOW16 - Matt Pietrek 1995
  3. // FILE: SHOW16.H
  4. //==================================
  5. #define IDC_GROUPBOX1   101
  6. #define IDC_RB_TASKS    102
  7. #define IDC_RB_MODULES  103
  8. #define IDC_LB_MAIN_LIST    104
  9. #define IDC_LB_DETAILS  105
  10. #define IDC_BUTTON_EXIT 106
  11. #define IDC_GROUPBOX2   108
  12. #define IDC_DETAILS_TYPE    107
  13.  
  14. #ifndef RC_INVOKED
  15. #pragma pack (1)
  16. #endif  /* RC_INVOKED */
  17.  
  18. typedef struct
  19. {
  20.     WORD    value;
  21.     LPSTR   name;
  22. } WORD_FLAGS;
  23.  
  24. #define LB_ITEM_HMODULE             1
  25. #define LB_ITEM_TASK                2
  26. #define LB_ITEM_SEGMENTS            3
  27. #define LB_ITEM_ENTRY_TABLE         4
  28. #define LB_ITEM_RESOURCES           5
  29. #define LB_ITEM_RESIDENT_NAMES      6
  30. #define LB_ITEM_NONRESIDENT_NAMES   7
  31.